home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / game / role / angband.lha / angband / src / undef.c < prev    next >
C/C++ Source or Header  |  1993-05-08  |  233b  |  21 lines

  1. /* undef.c: undefined routines */
  2.  
  3. #include "constant.h"
  4. #include "config.h"
  5. #include "types.h"
  6. #include <strings.h>
  7. #include <sys/file.h>
  8.  
  9. extern short log_index;
  10.  
  11. void init_files()
  12. {
  13. }
  14.  
  15. _new_log()
  16. {
  17.   log_index = 0;
  18.   return 1;
  19. }
  20.  
  21.